CreateBrowserContextRequest

data class CreateBrowserContextRequest(disposeOnDetach: Boolean?, proxyServer: String?, proxyBypassList: String?)

Represents request frame that can be used with Target#createBrowserContext operation call.

Creates a new empty BrowserContext. Similar to an incognito profile but you can have more than one.

See also

Constructors

CreateBrowserContextRequest
Link copied to clipboard
fun CreateBrowserContextRequest(disposeOnDetach: Boolean? = null, proxyServer: String? = null, proxyBypassList: String? = null)

Properties

disposeOnDetach
Link copied to clipboard
val disposeOnDetach: Boolean? = null
If specified, disposes this context when debugging session disconnects.
proxyBypassList
Link copied to clipboard
val proxyBypassList: String? = null
Proxy bypass list, similar to the one passed to --proxy-bypass-list
proxyServer
Link copied to clipboard
val proxyServer: String? = null
Proxy server, similar to the one passed to --proxy-server

Sources

jvm source
Link copied to clipboard